From: Sandrine Bailleux Date: Fri, 2 Oct 2015 08:32:35 +0000 (+0100) Subject: Fix #include path in ARM platform BL1 setup code X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22http:/www.crowdsec.net/%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22?a=commitdiff_plain;h=3ae8a360e04c35dc51114d13a5574760bc264cf7;p=project%2Fbcm63xx%2Fatf.git Fix #include path in ARM platform BL1 setup code This patch fixes the relative path to the 'bl1_private.h' header file included from 'arm_bl1_setup.c'. Note that, although the path was incorrect, it wasn't causing a compilation error because the header file still got included through an alternative include search path. Change-Id: I28e4f3dbe50e3550ca6cad186502c88a9fb5e260 --- diff --git a/plat/arm/common/arm_bl1_setup.c b/plat/arm/common/arm_bl1_setup.c index 6970aa31..ddf383fe 100644 --- a/plat/arm/common/arm_bl1_setup.c +++ b/plat/arm/common/arm_bl1_setup.c @@ -35,7 +35,7 @@ #include #include #include -#include "../../bl1/bl1_private.h" +#include "../../../bl1/bl1_private.h" #if USE_COHERENT_MEM